←Select platform

Insert Method

Summary

Inserts an item to the IList at the specified index.

Syntax

C#
VB
C++
public void Insert( 
   int index, 
   T item 
) 
  
Public Sub Insert( _ 
   ByVal index As Integer, _ 
   ByVal item As T _ 
)  
public: 
void Insert(  
   int index, 
   _T^_ item 
)  

Parameters

index
The zero-based index at which item should be inserted.

item
The object to insert into the IList.

Exceptions

ExceptionDescription
System.ArgumentOutOfRangeExceptionindex is not a valid index in the IList.
System.NotSupportedExceptionThe IList is read-only.
Requirements

Target Platforms

Help Version 19.0.2017.10.28
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom.AddIn Assembly